runtime.heapStatsDelta.smallAllocCount (field)

10 uses

	runtime (current package)
		mcache.go#L178: 	atomic.Xadduintptr(&stats.smallAllocCount[spc.sizeclass()], uintptr(s.nelems)-uintptr(s.allocCount))
		mcache.go#L246: 			atomic.Xadduintptr(&stats.smallAllocCount[spanClass(i).sizeclass()], -n)
		metrics.go#L96: 				for i, count := range in.heapStats.smallAllocCount[1:] {
		metrics.go#L395: 	for i := range a.smallAllocCount {
		metrics.go#L396: 		na := uint64(a.smallAllocCount[i])
		mstats.go#L576: 		a := uint64(consStats.smallAllocCount[i])
		mstats.go#L709: 	smallAllocCount [_NumSizeClasses]uintptr // number of allocs for small objects
		mstats.go#L731: 	for i := range b.smallAllocCount {
		mstats.go#L732: 		a.smallAllocCount[i] += b.smallAllocCount[i]